Version

Compare Method

Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other.
Syntax
'Declaration
 
Public Function Compare( _
   ByVal x As XamSliderThumb(Of T), _
   ByVal y As XamSliderThumb(Of T) _
) As Integer
public int Compare( 
   XamSliderThumb<T> x,
   XamSliderThumb<T> y
)

Parameters

x
The first object to compare.
y
The second object to compare.

Return Value

Value Condition Less than zerox is less than y.Zerox equals y.Greater than zerox is greater than y.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also